home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / PixMaps 1.1 / Example / PixExample.r < prev    next >
Encoding:
Text File  |  1997-07-10  |  1.4 KB  |  67 lines  |  [TEXT/MPS ]

  1. /* File PixExample.r Copyright (C) 1996 by John R. Montbriand.  All Rights Reserved. */
  2.  
  3. /* File PixExample.r
  4.     PixMap manipulation routines, Rez file.
  5.     Copyright (c) 1996, 1997 by John Montbriand.  All Rights Reserved.
  6.     Permission hereby granted for public use.
  7.         Distribute freely in areas where the laws of copyright apply.
  8.     USE AT YOUR OWN RISK.
  9.     DO NOT DISTRIBUTE MODIFIED COPIES.
  10.     Comments/questions/postcards* to the author at the address:
  11.       John Montbriand
  12.       P.O. Box. 1133
  13.       Saskatoon Saskatchewan Canada
  14.       S7K 3N2
  15.     or by email at:
  16.       tinyjohn@sk.sympatico.ca
  17.     *if you mail a postcard, then I will provide you with technical support
  18.     regarding questions you may have about this file. 
  19. */
  20.  
  21. /* rez source file for the PixExample program */
  22.  
  23.  
  24. #include "Types.r"
  25. #include "CodeFragmentTypes.r"
  26.  
  27. include "PixExample.rsrc";
  28.  
  29.  
  30. resource 'SIZE' (-1, purgeable)  {
  31.     reserved,
  32.     acceptSuspendResumeEvents,
  33.     reserved,
  34.     canBackground,
  35.     doesActivateOnFGSwitch,
  36.     backgroundAndForeground,
  37.     dontGetFrontClicks,
  38.     ignoreAppDiedEvents,
  39.     is32BitCompatible,
  40.     isHighLevelEventAware,
  41.     localAndRemoteHLEvents,
  42.     isStationeryAware,
  43.     dontUseTextEditServices,
  44.     reserved,
  45.     reserved,
  46.     reserved,
  47.     1024 * 500,
  48.     1024 * 500
  49. };
  50.  
  51.  
  52. resource 'cfrg' (0) {
  53.    {
  54.       kPowerPC,
  55.       kFullLib,
  56.       kNoVersionNum,
  57.       kNoVersionNum,
  58.       kDefaultStackSize,
  59.       kNoAppSubFolder,
  60.       kIsApp,
  61.       kOnDiskFlat,
  62.       kZeroOffset,
  63.       kWholeFork,
  64.       "PixExample" 
  65.    }
  66. };
  67.